home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 37 / CD Expert nº 37.iso / LastCall / lastcall.exe / stuff / lastcall.dxr / 00148.ls < prev    next >
Encoding:
Text File  |  2000-03-27  |  203 b   |  19 lines

  1. property pTimer
  2.  
  3. on beginSprite me
  4.   pTimer = nowTicks()
  5. end
  6.  
  7. on mouseDown
  8.   nothing()
  9. end
  10.  
  11. on mouseUp me
  12.   if ticksSince(pTimer) < 30 then
  13.     alertBeep()
  14.     exit
  15.   else
  16.     returnToBar()
  17.   end if
  18. end
  19.